home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / pxbud.zip / CUST.H < prev    next >
C/C++ Source or Header  |  1991-05-17  |  1KB  |  67 lines

  1. /**********************************************************
  2.  *                                                        *
  3.  * cust.h
  4.  * Header file for: \welcome\customer
  5.  *                                                        *
  6.  **********************************************************/
  7.  
  8. #ifndef RKCUST_H
  9. #define RKCUST_H
  10.  
  11. #ifndef RKPDXTBL_H
  12.   #include "pdxtbl.h"
  13. #endif
  14.  
  15. class Customer : public pxtable
  16. {
  17. public:
  18.  
  19.   CharFld   custid;
  20.   CharFld   group;
  21.   CharFld   salesno;
  22.   CharFld   referral;
  23.   CharFld   tran_del;
  24.   CharFld   name1;
  25.   CharFld   name2;
  26.   CharFld   address;
  27.   CharFld   city;
  28.   CharFld   state;
  29.   CharFld   zip;
  30.   CharFld   phone;
  31.   CharFld   fax;
  32.   CharFld   contact;
  33.   DateFld   date;
  34.   DblFld    totalprops;
  35.   CharFld   message_;
  36.   CharFld   message2;
  37.   CharFld   renewmsg1;
  38.   CharFld   renewmsg2;
  39.   CharFld   exmsg1;
  40.   CharFld   exmsg2;
  41.   CharFld   prmptmsg1;
  42.   CharFld   prmptmsg2;
  43.   CharFld   image_name;
  44.   DblFld    sheets;
  45.   DblFld    price;
  46.   DblFld    binder;
  47.   DblFld    units;
  48.   DblFld    properties;
  49.   CharFld   usageanal;
  50.   CharFld   custstmnt;
  51.   CharFld   billtomgtco;
  52.   CharFld   nameonlbl;
  53.   CharFld   style;
  54.   CharFld   nameinpropreg;
  55.   CharFld   sp1;
  56.  
  57.   Customer()
  58.       { strcpy(tblname, "customer"); }
  59.  
  60.   int   init_flds();
  61.  
  62. private:
  63.  
  64. };
  65.  
  66. #endif
  67.